-
Notifications
You must be signed in to change notification settings - Fork 1
Migrate to GitHub actions #31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Add publish-npm-sdk.yml workflow using reusable workflow - Support latest, nightly, and beta tag publishing - Use iExecBlockchainComputing/github-actions-workflows v1.5.0 - Configure for @iexec/web3telegram package scope - Enable manual dispatch with tag selection
- Update test-utils.ts to remove Drone-specific logic and use localhost URLs - Simplify prepare-test-env.js to only create .env file - Update prepare-bellecour-fork-for-tests.js to work with GitHub Actions - Add sdk-ci.yml workflow for automated testing on push
- Add workflow to validate conventional commit format on pull requests - Ensures consistent commit message formatting across the repository
- Add release-please configuration for monorepo (SDK + DApp) - Configure separate version tracking for both packages - Set up automated release workflow using iExec reusable workflow - Enable independent releases for SDK and DApp based on conventional commits
- Export TEST_CHAIN constant to fix import errors in test files - Resolves TypeScript compilation errors in CI check-types step
- Convert requiredStake to string when calling iexec.account.deposit() - Fixes TypeScript error: BigNumberish not assignable to NRLCAmount - NRLCAmount expects number | string | BN, not bigint
…ult from drone.yml
- Add dapp-deploy.yml workflow with sconify and deployment steps - Update deployment-dapp scripts to work with GitHub Actions - Replace DRONE_DEPLOY_TO with DEPLOY_ENVIRONMENT - Add support for pre-computed checksums from sconify workflow - Remove legacy Drone CI support from deployment scripts - Configure workflow to use public Docker registry and production sconify images
abbesBenayache
requested changes
Jul 8, 2025
fe0ea01 to
6f95cce
Compare
abbesBenayache
approved these changes
Jul 9, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Migrate from Drone CI to GitHub Actions
Overview
This PR migrates the web3telegram-sdk repository from Drone CI to GitHub Actions while maintaining all existing functionality and adding new automated workflows.
New GitHub Actions Workflows
Core CI/CD Workflows
sdk-ci.yml): Comprehensive testing for SDK changes with concurrency control and path filteringdapp-ci.yml): Testing workflow for dapp folder changesdeployment-dapp-ci.yml): Linting and formatting for deployment scriptsRelease Management
release-please.yml): Automated releases for SDK and DApp with semantic versioningconventional-commits.yml): Enforces conventional commit formatDocker & Deployment
dapp-sconify.yml): Uses reusable workflow for SCONE containerizationdapp-deployment.yml): Automated deployment with SCONE fingerprint integrationNPM Operations
npm-publish.yml): Uses reusable workflow for SDK publishing with manual dispatch🔧 Key Improvements
Enhanced Testing
Deployment Enhancements
Monorepo Support
🗑️ Removed Components
📋 Migration Checklist
🔄 Backward Compatibility
🧪 Testing
📝 Notes